Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 | import { apiService } from './api';
import { ApiResult } from '@/types';
import { User, UserRole, UpdateResellerDemoLimitRequest } from '@/types';
import { API_ENDPOINTS } from '@/constants/api';
export interface CreateUserRequest {
username: string;
password: string;
email: string;
role: UserRole;
max_devices: number;
credits?: number;
active?: boolean;
expires_at?: string;
category_ids?: number[];
daily_demo_limit?: number;
}
export interface CreateResellerRequest {
username: string;
password: string;
email: string;
credits?: number;
daily_demo_limit?: number;
}
export interface CreateEndUserRequest {
username: string;
password: string;
email: string;
max_devices: number;
reseller_id?: number;
expires_at?: string;
category_ids?: number[];
}
export interface UpdateUserRequest {
username?: string;
email?: string;
max_devices?: number;
active?: boolean;
password?: string;
category_ids?: number[];
}
export interface ExtendSubscriptionRequest {
extension_months: number;
category_ids?: number[];
}
export interface GetUsersRequest {
role?: UserRole;
active?: boolean;
page?: number;
limit?: number;
search?: string;
}
export interface UsersResponse {
users: User[];
total: number;
page: number;
limit: number;
total_pages: number;
}
class UserService {
/**
* Get users with optional filtering
*/
async getUsers(params?: GetUsersRequest): Promise<ApiResult<User[]>> {
try {
// Use specific endpoint for resellers
let endpoint: string = API_ENDPOINTS.ADMIN.USERS;
if (params?.role === UserRole.RESELLER) {
endpoint = API_ENDPOINTS.ADMIN.RESELLERS;
// Remove role param since the endpoint is specific to resellers
const { role: _role, ...otherParams } = params;
const result = await apiService.get<User[]>(endpoint, { params: otherParams });
return result;
} else if (params?.role === UserRole.END_USER) {
// For end users, use the admin users endpoint
endpoint = API_ENDPOINTS.ADMIN.USERS;
// Remove role param since the endpoint is specific to end users
const { role: _role, ...otherParams } = params;
const result = await apiService.get<User[]>(endpoint, { params: otherParams });
return result;
}
const result = await apiService.get<User[]>(endpoint, { params });
return result;
} catch {
return {
success: false,
error: {
error: 'Users Fetch Failed',
details: 'Failed to fetch users',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get users created by a specific reseller
*/
async getResellerUsers(_resellerId: number): Promise<ApiResult<User[]>> {
try {
const result = await apiService.get<User[]>('/api/reseller/users');
return result;
} catch {
return {
success: false,
error: {
error: 'Reseller Users Fetch Failed',
details: 'Failed to fetch reseller users',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get user by ID
*/
async getUserById(userId: number): Promise<ApiResult<User>> {
try {
const result = await apiService.get<User>(`/api/admin/users/${userId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'User Fetch Failed',
details: 'Failed to fetch user details',
timestamp: new Date().toISOString()}
};
}
}
/**
* Create a new user (generic - deprecated, use specific methods)
*/
async createUser(userData: CreateUserRequest): Promise<ApiResult<User>> {
try {
// Route to specific endpoint based on role
if (userData.role === UserRole.RESELLER) {
return this.createReseller({
username: userData.username,
password: userData.password,
email: userData.email,
credits: userData.credits,
daily_demo_limit: userData.daily_demo_limit});
} else if (userData.role === UserRole.END_USER) {
return this.createEndUser({
username: userData.username,
password: userData.password,
email: userData.email,
max_devices: userData.max_devices,
expires_at: userData.expires_at,
category_ids: userData.category_ids});
} else {
// For admin users, use the generic endpoint
const result = await apiService.post<User>(API_ENDPOINTS.ADMIN.USERS, userData);
return result;
}
} catch {
return {
success: false,
error: {
error: 'User Creation Failed',
details: 'Failed to create user',
timestamp: new Date().toISOString()}
};
}
}
/**
* Create a new reseller
*/
async createReseller(userData: CreateResellerRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.post<User>(API_ENDPOINTS.ADMIN.RESELLERS, userData);
return result;
} catch {
return {
success: false,
error: {
error: 'Reseller Creation Failed',
details: 'Failed to create reseller',
timestamp: new Date().toISOString()}
};
}
}
/**
* Create a new end user
*/
async createEndUser(userData: CreateEndUserRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.post<User>(API_ENDPOINTS.ADMIN.USERS, userData);
return result;
} catch (error) {
throw error;
}
}
/**
* Update user information
*/
async updateUser(userId: number, userData: UpdateUserRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/admin/users/${userId}`, userData);
return result;
} catch {
return {
success: false,
error: {
error: 'User Update Failed',
details: 'Failed to update user',
timestamp: new Date().toISOString()}
};
}
}
/**
* Extend user subscription (reseller only)
*/
async extendUserSubscription(userId: number, extensionData: ExtendSubscriptionRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/reseller/users/${userId}/extend`, extensionData);
return result;
} catch {
return {
success: false,
error: {
error: 'Extend Subscription Failed',
details: 'Failed to extend subscription',
timestamp: new Date().toISOString()}
};
}
}
/**
* Update user credits
*/
async updateUserCredits(userId: number, credits: number): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/admin/users/${userId}/credits`, { credits });
return result;
} catch {
return {
success: false,
error: {
error: 'Credits Update Failed',
details: 'Failed to update user credits',
timestamp: new Date().toISOString()}
};
}
}
/**
* Delete user
*/
async deleteUser(userId: number): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.delete<{ success: boolean }>(`/api/admin/users/${userId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'User Deletion Failed',
details: 'Failed to delete user',
timestamp: new Date().toISOString()}
};
}
}
/**
* Ban/unban user (reseller only)
*/
async toggleUserStatus(userId: number, active: boolean): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/reseller/users/${userId}/status`, { active });
return result;
} catch {
return {
success: false,
error: {
error: 'Status Update Failed',
details: 'Failed to update user status',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get user's devices
*/
async getUserDevices(userId: number): Promise<ApiResult<Array<{
id: number;
device_id: string;
device_name: string;
last_seen: string;
active: boolean;
}>>> {
try {
const result = await apiService.get<Array<{
id: number;
device_id: string;
device_name: string;
last_seen: string;
active: boolean;
}>>(`/api/admin/users/${userId}/devices`);
return result;
} catch {
return {
success: false,
error: {
error: 'Devices Fetch Failed',
details: 'Failed to fetch user devices',
timestamp: new Date().toISOString()}
};
}
}
/**
* Remove user device
*/
async removeUserDevice(userId: number, deviceId: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.delete<{ success: boolean }>(`/api/admin/users/${userId}/devices/${deviceId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'Device Removal Failed',
details: 'Failed to remove user device',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get user statistics
*/
async getUserStats(userId: number): Promise<ApiResult<{
total_streams: number;
active_devices: number;
last_login: string;
total_watch_time: number;
favorite_content: Array<{
id: number;
title: string;
watch_count: number;
}>;
}>> {
try {
const result = await apiService.get<{
total_streams: number;
active_devices: number;
last_login: string;
total_watch_time: number;
favorite_content: Array<{
id: number;
title: string;
watch_count: number;
}>;
}>(`/api/admin/users/${userId}/stats`);
return result;
} catch {
return {
success: false,
error: {
error: 'User Stats Failed',
details: 'Failed to fetch user statistics',
timestamp: new Date().toISOString()}
};
}
}
/**
* Reset user password
*/
async resetUserPassword(userId: number, newPassword: string): Promise<ApiResult<{ success: boolean }>> {
try {
const result = await apiService.put<{ success: boolean }>(API_ENDPOINTS.ADMIN.USER_PASSWORD(userId), { password: newPassword });
return result;
} catch {
return {
success: false,
error: {
error: 'Password Reset Failed',
details: 'Failed to reset user password',
timestamp: new Date().toISOString()}
};
}
}
/**
* Transfer user to another reseller
*/
async transferUser(userId: number, newResellerId: number): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/admin/users/${userId}/transfer`, {
new_reseller_id: newResellerId
});
return result;
} catch {
return {
success: false,
error: {
error: 'User Transfer Failed',
details: 'Failed to transfer user to new reseller',
timestamp: new Date().toISOString()}
};
}
}
/**
* Bulk operations on users
*/
async bulkUpdateUsers(userIds: number[], updates: Partial<UpdateUserRequest>): Promise<ApiResult<{
updated: number;
failed: number;
errors: string[];
}>> {
try {
const result = await apiService.put<{
updated: number;
failed: number;
errors: string[];
}>(`${API_ENDPOINTS.ADMIN.USERS}/bulk`, {
user_ids: userIds,
updates
});
return result;
} catch {
return {
success: false,
error: {
error: 'Bulk Update Failed',
details: 'Failed to perform bulk user update',
timestamp: new Date().toISOString()}
};
}
}
/**
* Export users data
*/
async exportUsers(format: 'csv' | 'json' = 'csv'): Promise<ApiResult<{ download_url: string }>> {
try {
const result = await apiService.get<{ download_url: string }>(`/api/admin/users/export?format=${format}`);
return result;
} catch {
return {
success: false,
error: {
error: 'Export Failed',
details: 'Failed to export users data',
timestamp: new Date().toISOString()}
};
}
}
/**
* Update reseller information (admin only)
*/
async updateReseller(resellerId: number, userData: UpdateUserRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/admin/resellers/${resellerId}`, userData);
return result;
} catch {
return {
success: false,
error: {
error: 'Reseller Update Failed',
details: 'Failed to update reseller',
timestamp: new Date().toISOString()}
};
}
}
/**
* Update reseller demo limit (admin only)
*/
async updateResellerDemoLimit(resellerId: number, request: UpdateResellerDemoLimitRequest): Promise<ApiResult<User>> {
try {
const result = await apiService.put<User>(`/api/admin/resellers/${resellerId}/demo-limit`, request);
return result;
} catch {
return {
success: false,
error: {
error: 'Demo Limit Update Failed',
details: 'Failed to update reseller demo limit',
timestamp: new Date().toISOString()}
};
}
}
/**
* Delete end user (reseller only)
*/
async deleteEndUser(userId: number): Promise<ApiResult<void>> {
try {
const result = await apiService.delete<void>(`/api/reseller/users/${userId}`);
return result;
} catch {
return {
success: false,
error: {
error: 'User Deletion Failed',
details: 'Failed to delete user',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get end users created by a specific reseller (admin only)
*/
async getResellerEndUsers(resellerId: number): Promise<ApiResult<User[]>> {
try {
const result = await apiService.get<User[]>(`/api/admin/resellers/${resellerId}/users`);
return result;
} catch {
return {
success: false,
error: {
error: 'Fetch Failed',
details: 'Failed to fetch reseller end users',
timestamp: new Date().toISOString()}
};
}
}
/**
* Reset daily demo counters for all resellers (admin only)
*/
async resetDailyDemoCounters(): Promise<ApiResult<{ success: boolean; message: string; resellers_updated: number }>> {
try {
const result = await apiService.post<{ success: boolean; message: string; resellers_updated: number }>('/api/admin/demos/reset-counters');
return result;
} catch {
return {
success: false,
error: {
error: 'Reset Failed',
details: 'Failed to reset daily demo counters',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get activity logs for admin (all logs)
*/
async getAdminActivityLogs(filters?: {
action_type?: string;
user_id?: number;
target_user_id?: number;
start_date?: string;
end_date?: string;
page?: number;
limit?: number;
}): Promise<ApiResult<any>> {
try {
const params = new URLSearchParams();
if (filters) {
Object.entries(filters).forEach(([key, value]) => {
if (value !== undefined && value !== null) {
params.append(key, value.toString());
}
});
}
const url = `/api/admin/logs${params.toString() ? `?${params.toString()}` : ''}`;
const result = await apiService.get<any>(url);
return result;
} catch {
return {
success: false,
error: {
error: 'Fetch Failed',
details: 'Failed to fetch admin activity logs',
timestamp: new Date().toISOString()}
};
}
}
/**
* Get activity logs for reseller (only their related logs)
*/
async getResellerActivityLogs(filters?: {
action_type?: string;
start_date?: string;
end_date?: string;
page?: number;
limit?: number;
}): Promise<ApiResult<any>> {
try {
const params = new URLSearchParams();
if (filters) {
Object.entries(filters).forEach(([key, value]) => {
if (value !== undefined && value !== null) {
params.append(key, value.toString());
}
});
}
const url = `/api/reseller/logs${params.toString() ? `?${params.toString()}` : ''}`;
const result = await apiService.get<any>(url);
return result;
} catch {
return {
success: false,
error: {
error: 'Fetch Failed',
details: 'Failed to fetch reseller activity logs',
timestamp: new Date().toISOString()}
};
}
}
}
export const userService = new UserService();
|